home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2001-08-28 | 1.1 KB | 47 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="Appearance\Files&Folders\Folders Context Menu"
- "NAME"="Encryt/Decrypt Context Menu"
- "VERSION"="1.05"
- "OSVERSION"="010101"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Add Encrypt/Decrypt commands to any folder"
- "DESCRIPTION 1"="For NTFS systems: Add Encrypt/Decrypt to Context [right-click] Menu."
- "AUTHOR"="Ojatex@aol.com"
- "CONTACTURL"="http://members.aol.com/ojatex/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="For more information about the X-Setup program, go to http://www.xteq.com"
-
-
- sP="HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\EncryptionContextMenu"
-
- Sub Plugin_Initialize
- i=RegReadValue(sP)
- if i=1 or IsEmpty(i) then
- SetUIElement 1,true
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sP,"1",2)
- else
- Call RegWriteValue(sP,"0",2)
- end if
-
- Restart
- End Sub
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-